home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / DependantScan.lha / DependantScan / Source / LocaleSupport.h < prev    next >
C/C++ Source or Header  |  1999-01-10  |  719b  |  16 lines

  1. #define DEF_LOCALESUPPORT_H
  2.  
  3. struct LOCALE_SUPPORT_CATALOG
  4. {
  5. #if defined AMIGA                                              /* if this is being compiled for AmigaOS */
  6.    struct Catalog *lsc_catalog;                                /* the multi-language catalog for this process */
  7. #endif
  8.  
  9.    char **lsc_default_text;                                    /* the built-in strings of the process */
  10. };
  11.  
  12. /* LocaleSupport.c */
  13. extern struct LOCALE_SUPPORT_CATALOG *locale_support_open( char *catalog_name, char *default_text[]);
  14. extern char *locale_support_string( struct LOCALE_SUPPORT_CATALOG *catalog, int message_index);
  15. extern struct LOCALE_SUPPORT_CATALOG *locale_support_close( struct LOCALE_SUPPORT_CATALOG *catalog);
  16.